Xbasic

StringDictionary.SET Function

Syntax

Set as v(name as c,value as c)

Arguments

name

A unique character value.

value

Character data to be saved in the dictionary.

Description

Set a value to string dictionary.

Discussion

The .SET() method adds a new entry to a StringDictionary list.

Example

dim sd as StringDictionary
sd.set("abc", "3")
? sd.get("abc")
= "3"

See Also